home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / CommentConverter 1.0.0 / READ ME FIRST!!! < prev   
Encoding:
Text File  |  1994-04-27  |  3.1 KB  |  60 lines  |  [ttro/ttxt]

  1.  
  2.  
  3. CommentConverter 1.0.0
  4. ======================
  5.  
  6. This is a little D&D that converts C-style comments to C++-style comments and vice 
  7. versa. Your files should remain untouched, and new files with the same names but with the 
  8. extension ". b" or ".d" (for files ".c"), ".g" or ".i" (for files ".h") will be created. To convert to
  9. C-style simply hold down the Option Key while dropping the files.
  10.  
  11.  
  12. DRAWBACKS:
  13. ============
  14.  
  15. I did not bother to cater for comments in parantheses, so 
  16.   printf ("/*"); /* This will lead to errors!!!*/
  17. will be converted to:
  18.   printf ("//"); /* This will lead to errors!!!
  19. Nested Comments are not treated separately, thus 
  20.   /* This comment will //look like this after conversion*/
  21. will result in:
  22.   /* This comment will /*look like this after conversion*/*/.
  23. To avoid this if converting to C-style comments first convert to C++-style comments
  24. yielding //...//, which will be correctly translated to /* // */.
  25. Only 8 files may be dropped at the same time (see constant maxFiles in Apple.h).
  26.  
  27.  
  28. VERSION HISTORY:
  29. ================
  30. 1.0.0 (December 20, 1993) -=- initial release.
  31.  
  32.  
  33. COPYRIGHT NOTICES:
  34. ==================
  35. CommentConverter 1.0.0 and the included sources and libraries are copyright ©1993 Andreas Amoroso (parts are copyright Symantec).  The project is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You may not redistribute the sources, libraries or the program without the author´s permission.
  36.  
  37.  
  38. DISCLAIMER:
  39. ===========
  40.  
  41. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THIS PROGRAM AND OF THE INCLUDED SOURCES AND LIBRARIES IS AT YOUR SOLE RISK. THERE IS NO WARRANTY FOR THE PROGRAM OR THE SOURCES OR LIBRARIES, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  THE COPYRIGHT HOLDER PROVIDES THE PROGRAM AND THE INCLUDED SOURCES AND LIBRARIES  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM AND THE SOURCES AND LIBRARIES IS WITH YOU.  SHOULD THE PROGRAM OR THE SOURCES OR LIBRARIES PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL THE COPYRIGHT HOLDER BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM OR THE SOURCES OR LIBRARIES (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM OR THE SOURCES OR LIBRARIES TO OPERATE WITH ANY OTHER PROGRAMS).
  42.  
  43.  
  44.  
  45.  
  46. Andreas Amoroso,
  47. 27.4.94
  48.  
  49.  
  50.  
  51. P.S.: PLEASE FEEL FREE TO SEND ME A POSTCARD OF YOUR HOMETOWN IF YOU LIKE COMMENTCONVERTER!
  52.        (YOU WOULD BETTER DO SO, OR YOU MIGHT GET A PIMPLE ON YOUR TONGUE!!!)
  53.        My address:
  54.        Universität Kaiserslautern
  55.        Fachbereich Elektrotechnik
  56.        z. H.: Herrn A Amoroso
  57.        Erwin-Schrödinger-Straße
  58.        67653 Kaiserslautern
  59.        GERMANY
  60.